0ffa9b55f3e6f89a268e8f839161590ddbc679f9,src/com/opentaxi/android/fragments/RequestDetailsFragment.java,RequestDetailsFragment,showDetails,#,169
Before Change
if (newCRequest.getCarNumber() != null && !newCRequest.getCarNumber().isEmpty()) {
car.setText((newCRequest.getNotes() != null ? newCRequest.getNotes() : "") + " №" + newCRequest.getCarNumber());
Drawable icon = new IconicsDrawable(mActivity, GoogleMaterial.Icon.gmd_info).actionBar().colorRes(R.color.transparent_blue);
car.setCompoundDrawablesWithIntrinsicBounds(null, null, icon, null);
car.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
After Change
if (newCRequest.getCarNumber() != null && !newCRequest.getCarNumber().isEmpty()) {
car.setText((newCRequest.getNotes() != null ? newCRequest.getNotes() : "") + " №" + newCRequest.getCarNumber());
Drawable icon = new IconDrawable(mActivity, MaterialIcons.md_info).colorRes(R.color.transparent_blue).sizeDp(30);
//Drawable icon = new IconicsDrawable(mActivity, GoogleMaterial.Icon.gmd_info).actionBar().colorRes(R.color.transparent_blue);
car.setCompoundDrawablesWithIntrinsicBounds(null, null, icon, null);
car.setOnClickListener(new View.OnClickListener() {